type encoding/binary.decoder

13 uses

	encoding/binary (current package)
		binary.go#L255: 	d := &decoder{order: order, buf: make([]byte, size)}
		binary.go#L462: type decoder coder
		binary.go#L465: func (d *decoder) bool() bool {
		binary.go#L480: func (d *decoder) uint8() uint8 {
		binary.go#L491: func (d *decoder) uint16() uint16 {
		binary.go#L502: func (d *decoder) uint32() uint32 {
		binary.go#L513: func (d *decoder) uint64() uint64 {
		binary.go#L524: func (d *decoder) int8() int8 { return int8(d.uint8()) }
		binary.go#L528: func (d *decoder) int16() int16 { return int16(d.uint16()) }
		binary.go#L532: func (d *decoder) int32() int32 { return int32(d.uint32()) }
		binary.go#L536: func (d *decoder) int64() int64 { return int64(d.uint64()) }
		binary.go#L540: func (d *decoder) value(v reflect.Value) {
		binary.go#L684: func (d *decoder) skip(v reflect.Value) {